/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background:rgb(236, 236, 255); 
    color: #333; /* Dark text for readability */
    overflow-x: hidden;
}
li{
    margin: 10px;
}
h1, h2, h3, h4, p, span {
    font-family: 'Montserrat', sans-serif;
}

h2, h3 {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    letter-spacing: 1px;
    color: rgb(209, 209, 134);  
    margin-bottom: 10px;
    text-align: center;
}

/* Header */
.hero {
    position: relative;
    background-size: cover;
    background-color: blue;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.no{
    margin-top: 0%;
    margin-bottom: 60px;
    float: right;
}
a{
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-size-adjust: 10%;
    color: rgb(255, 255, 255);
    margin:52px;
    font-weight: bolder;
    font-size: larger;
}
.card-logo-text {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .card-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px; /* Optional: for rounded look */
  }
  
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; 
    height: 100%;
    z-index: 0;
}
.me{
    color: rgb(209, 209, 134); 
}
.hero .navbar,
.hero .hero-text {
    position: relative;

}
.hero-text {
    margin-top: 109px;
    animation: fadeIn 1s ease-in; /*fadeIn 1s cubic-bezier(0.77, 0, 0.175, 1) */
}

.hero-text h2 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero-text h1 {
    align-self: center;
    margin: 5%;
    margin-left: 20px;
}
.hero-text p {
    font-size: 1.2em;
    color: #f4f6f9;
    text-align: center;
}
/*end of Header section*/
section {
    padding: 80px 0;
    margin-top: 40px;
    background-color: #f1f4ca; 
    box-shadow: 0 4px 20px rgba(0,0,4,0.1);
}
.about-section{
    width: 100%;
}
section p, section ul li {
    color: #333;
    font-size: 1.2em; 
    margin: 29px;
}

.cover{
    text-align: center;
}
.card-link {
    color: blue;
    text-decoration: none;
    display: block;
    height: 100%;
}
.hero {
    background-image: url('vv.png');
    padding: 90px;
    padding-bottom: 200px;
}
.hero::before {
    background-color: rgba(0, 0, 0, 0.4); /* Overlay darkness */
    
}
/*mission section*/
/* Core Values Section */
.core-values ul {
    list-style-type: none;     
}
.core-values li {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333333;
    align-items: center;
}

.core-values i {
    font-size: 2.5em;
    color: #2c3e50; /* Deep blue icons */
  
    box-shadow: 0 4px 20px rgba(0,0,4,0.1);
}
.core-ul{
    color: red;
}
/* Program Cards */
.program-cards {
    display: flex;
    justify-content: space-around;
    align-self: center;
    text-align: center;
    margin-top: 30px;
}

.card {
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background:rgb(2, 14, 185);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
h4{
    text-align: center;
    font-size: larger;
    font-weight: bold;
}
.card:hover {
    transform: scale(1.05);
    background:rgb(4, 21, 248);
}

.card h4 {
    color: #ecf0f1;
    margin-bottom: 20px;
}
.card-link p{
    font-weight: lighter;
    font-size: large;
}
.card p {
    color: #ecf0f1;
    font-size: large;
    text-align: center;
}

/* Testimonials Section */
.testimonials{
    background-color: #f1f4ca; 
    padding: 50px 0;
}

.testimonial-cards {
    display: flex;
    justify-content: space-around;
    margin: 20px;
    gap: 20px;
}
.you{
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    text-transform: capitalize;
    }
.testimonial-card {
    background:rgb(2, 14, 185);
    padding: 10px;
    width: 49%;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.testimonial-card p {
    color: #ecf0f1;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card span {
    display: block;
    font-weight: bold;
    color: #7e8b8c; /* Soft grayish blue */
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #34495e;
    color: #ecf0f1;
    margin-top: 50px;
    background:rgb(2, 14, 185);
}

footer a {
    text-decoration: none;
    color: #7e8b8c; /* Subtle blue-gray */
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ecf0f1; /* White on hover */
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .program-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 20px;
    }

    .hero-text h2 {
        font-size: 2.2em;
    }

    .cta-btn {
        font-size: 1.2em;
        padding: 10px 20px;
    }
}
